diff options
author | Arun Isaac | 2024-01-09 17:29:06 +0000 |
---|---|---|
committer | Arun Isaac | 2024-01-09 17:29:06 +0000 |
commit | 4c67d6e4437e50f04940166b02411dd03ee8a8ee (patch) | |
tree | 24bc8b9fbcca9b731f1de394495d607edd2d36f3 | |
parent | 341369ad6b493627bd43aab72df691f56fa30492 (diff) | |
download | gn-machines-4c67d6e4437e50f04940166b02411dd03ee8a8ee.tar.gz |
Add "=" before --load-path argument value.
guix requires "=" between argument names and values.
* production-deploy.sh: Add "=" before --load-path argument value.
-rwxr-xr-x | production-deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/production-deploy.sh b/production-deploy.sh index d87a459..e7c4004 100755 --- a/production-deploy.sh +++ b/production-deploy.sh @@ -23,7 +23,7 @@ container_script=$(guix system container \ --network \ - --load-path . \ + --load-path=. \ --verbosity=3 \ --share=/export2/guix-containers/genenetwork/var/lib/acme=/var/lib/acme \ --share=/export2/guix-containers/genenetwork/var/lib/mysql=/var/lib/mysql \ |