Merge pull request #22 from NonerKao/master

Fix a typo in function bocker_commit
This commit is contained in:
Peter Wilmott 2015-08-05 19:11:27 +01:00
commit 25029b4f07

2
bocker
View File

@ -101,7 +101,7 @@ function bocker_logs() { #HELP View logs from a container:\nBOCKER logs <contain
function bocker_commit() { #HELP Commit a container to an image:\nBOCKER commit <container_id> <image_id>
[[ "$(bocker_check "$1")" == 1 ]] && echo "No container named '$1' exists" && exit 1
[[ "$(bocker_check "$2")" == 1 ]] && echo "No image named '$1' exists" && exit 1
[[ "$(bocker_check "$2")" == 1 ]] && echo "No image named '$2' exists" && exit 1
bocker_rm "$2" && btrfs subvolume snapshot "$btrfs_path/$1" "$btrfs_path/$2" > /dev/null
echo "Created: $2"
}