File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and **Merged pull requests**. Critical items to know are:
14
14
The versions coincide with releases on pypi.
15
15
16
16
## [ 0.0.x] ( https://github.com/singularityhub/singularity-compose/tree/master ) (0.0.x)
17
+ - bind volumes can handle tilde expansion (0.0.14)
17
18
- fix module import used by check command (0.0.13)
18
19
- adding jsonschema validation and check command (0.0.12)
19
20
- implement configuration override feature
Original file line number Diff line number Diff line change @@ -216,6 +216,7 @@ def _get_bind_commands(self):
216
216
binds = []
217
217
for volume in self .volumes :
218
218
src , dest = volume .split (":" )
219
+ src = os .path .expanduser (src )
219
220
220
221
# First try, assume file in root folder
221
222
if not os .path .exists (os .path .abspath (src )):
Original file line number Diff line number Diff line change 8
8
9
9
"""
10
10
11
- __version__ = "0.1.13 "
11
+ __version__ = "0.1.14 "
12
12
AUTHOR = "Vanessa Sochat"
13
13
AUTHOR_EMAIL = "[email protected] "
14
14
NAME = "singularity-compose"
You can’t perform that action at this time.
0 commit comments