Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ The client here will eventually be released as "spython" (and eventually to
singularity on pypi), and the versions here will coincide with these releases.

## [master](https://github.com/singularityhub/singularity-cli/tree/master)
- COPY command should honor src src dest (and not reverse) (0.0.48)
- adding support for instance list (0.0.47)
- ENV variables in Dockerfile can be empty (like unsetting) (0.0.46)
- COPY can handle multiple sources to one destination for Dockerfile parser (0.0.45)
Expand Down
4 changes: 2 additions & 2 deletions spython/main/parse/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ def _copy(self, lines):

for line in lines:
values = line.split(" ")
frompath = values.pop(0)
for topath in values:
topath = values.pop()
for frompath in values:
self._add_files(frompath, topath)


Expand Down
2 changes: 1 addition & 1 deletion spython/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@



__version__ = "0.0.47"
__version__ = "0.0.48"
AUTHOR = 'Vanessa Sochat'
AUTHOR_EMAIL = 'vsochat@stanford.edu'
NAME = 'spython'
Expand Down