Skip to content

Commit 54f33fb

Browse files
authored
Merge pull request #633 from ratt-ru/caracal-1150
Fixes caracal/1150
2 parents 2980594 + 813fc23 commit 54f33fb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313

1414
PACKAGE_NAME = "stimela"
15-
__version__ = "1.6.1"
15+
__version__ = "1.6.2"
1616

1717
setup(name=PACKAGE_NAME,
1818
version=__version__,

stimela/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def pull(argv):
232232

233233
add("-s", "--singularity", action="store_true",
234234
help="Pull base images using singularity."
235-
"Images will be pulled into the directory specified by the enviroment varaible, SINGULARITY_PULLFOLDER. $PWD by default")
235+
"Images will be pulled into the directory specified by the enviroment varaible, STIMELA_PULLFOLDER. $PWD by default")
236236

237237
add("-d", "--docker", action="store_true",
238238
help="Pull base images using docker.")
@@ -244,7 +244,7 @@ def pull(argv):
244244
help="Pull base image for specified cab")
245245

246246
add("-pf", "--pull-folder",
247-
help="Images will be placed in this folder. Else, if the environmnental variable 'SINGULARITY_PULLFOLDER' is set, then images will be placed there. "
247+
help="Images will be placed in this folder. Else, if the environmnental variable 'STIMELA_PULLFOLDER' is set, then images will be placed there. "
248248
"Else, images will be placed in the current directory")
249249

250250
args = parser.parse_args(argv)
@@ -253,7 +253,7 @@ def pull(argv):
253253
pull_folder = args.pull_folder
254254
else:
255255
try:
256-
pull_folder = os.environ["SINGULARITY_PULLFOLDER"]
256+
pull_folder = os.environ["STIMELA_PULLFOLDER"]
257257
except KeyError:
258258
pull_folder = "."
259259

0 commit comments

Comments
 (0)