From da9b30019a921bed44197cee321a0350f2e46ce5 Mon Sep 17 00:00:00 2001 From: David Minton Date: Wed, 7 Jun 2023 09:00:36 -0400 Subject: [PATCH] More typo fixes and cleanup --- apptainer/install.sh | 5 +++-- singularity/install.sh | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/apptainer/install.sh b/apptainer/install.sh index abf9f4f91..a36eaf3a1 100755 --- a/apptainer/install.sh +++ b/apptainer/install.sh @@ -1,10 +1,11 @@ #!/bin/sh -- # This will install the Singularity container version of the swiftest_driver in place of the native compiled version into ../bin. -# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest_driver.sif, which requires this script to be called via source: +# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest.sif, which requires this script to be called via source: # $ . ./install.sh # tag=${1:-latest} -echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest_driver:${tag} Docker container" +echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest:${tag} Docker container" apptainer pull --force swiftest.sif docker://daminton/swiftest:${tag} cp -rf bin/swiftest_driver ../bin/ +cp -rf bin/swiftest_python ../bin/ source ./setenv.sh \ No newline at end of file diff --git a/singularity/install.sh b/singularity/install.sh index 99cae29c1..3c1f3445d 100755 --- a/singularity/install.sh +++ b/singularity/install.sh @@ -1,10 +1,11 @@ #!/bin/sh -- # This will install the Singularity container version of the swiftest_driver in place of the native compiled version into ../bin. -# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest_driver.sif, which requires this script to be called via source: +# In order to use the executable script, the SWIFTEST_SIF environment variable must be set to point to the location of swiftest.sif, which requires this script to be called via source: # $ . ./install.sh # tag=${1:-latest} -echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest_driver:${tag} Docker container" +echo "Installing swiftest_driver.sif Singularity container and executable script from swiftest:${tag} Docker container" singularity pull --force swiftest.sif docker://daminton/swiftest:${tag} cp -rf bin/swiftest_driver ../bin/ +cp -rf bin/swiftest_python ../bin/ source ./setenv.sh \ No newline at end of file