This repository was archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue in the environment variable setter, as it was only pointi…
…ng to the directory and not the swiftest.sif file itself
- Loading branch information
Showing
2 changed files
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
#!/bin/sh -- | ||
singularity pull swiftest.sif docker://daminton/swiftest:latest | ||
source ./setenv.sh | ||
singularity pull --force swiftest.sif docker://daminton/swiftest:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
# source this file to set the path to the swiftest.sif file | ||
export SWIFTEST_SIF=${PWD} | ||
export SWIFTEST_SIF="${PWD}/swiftest.sif" |