@@ -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