Skip to content

Commit

Permalink
Using -c -i instead of -C
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Nilsson committed Mar 5, 2024
1 parent e7d7c6f commit f68f18b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PILOTVERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.7.2.2
3.7.2.3
3 changes: 2 additions & 1 deletion pilot/user/atlas/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,8 @@ def get_container_options(container_options):
pass
# opts += 'export ALRB_CONT_CMDOPTS=\"$ALRB_CONT_CMDOPTS -c -i -p\";'
else:
opts += '-e \"-C\"'
#opts += '-e \"-C\"'
opts += '-e \"-c -i\"'

return opts

Expand Down
2 changes: 1 addition & 1 deletion pilot/util/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
RELEASE = '3' # released number should be fixed at 3 for Pilot 3
VERSION = '7' # version number is '1' for first release, '0' until then, increased for bigger updates
REVISION = '2' # revision number should be reset to '0' for every new version release, increased for small updates
BUILD = '2' # build number should be reset to '1' for every new development cycle
BUILD = '3' # build number should be reset to '1' for every new development cycle

SUCCESS = 0
FAILURE = 1
Expand Down

0 comments on commit f68f18b

Please sign in to comment.