fix: spacing with upload examples in REAMDE

This commit is contained in:
David Allen 2025-08-31 22:59:20 -06:00
parent ee8318bc2c
commit 1171b4f538
Signed by: towk
GPG key ID: 0430CDBE22619155

View file

@ -93,24 +93,24 @@ makeshift download profile default
```bash
# upload a single file in root directory
makeshift upload -d @compute-base.yaml
makeshift upload -d @compute-base.yaml
# upload a directory (not working yet...)
makeshift upload -d @setup/
# upload a directory (not working yet...)
makeshift upload -d @setup/
# upload an archive (extracted and saved on server - not working yet...)
makeshift upload -d @setup.tar.gz -t archive
# upload an archive (extracted and saved on server - not working yet...)
makeshift upload -d @setup.tar.gz -t archive
# upload a new profile
makeshift upload profile -d @compute.json kubernetes.json
# upload a new profile
makeshift upload profile -d @compute.json kubernetes.json
# upload a new profile with a specific path
makeshift upload profile -d @kubernetes.json
makeshift upload profile -d '{"id": "custom", "data": {}}' kubernetes.json
# upload a new profile with a specific path
makeshift upload profile -d @kubernetes.json
makeshift upload profile -d '{"id": "custom", "data": {}}' kubernetes.json
# upload a new plugin
makeshift upload plugin -d @slurm.so
makeshift upload plugin slurm.so
# upload a new plugin
makeshift upload plugin -d @slurm.so
makeshift upload plugin slurm.so
```
> [!NOTE]