diff options
author | Chris Evich <cevich@redhat.com> | 2019-05-16 13:18:22 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-05-22 13:13:40 -0400 |
commit | 1bf622a0ea5ab24af4aeb9f2065952376ee7fb0f (patch) | |
tree | 4183a656955567dbc4e10931dcc16b1c223b7a3a /hack/get_ci_vm.sh | |
parent | 53a2994a227c3b00f3b382477718dca18b6a5547 (diff) | |
download | podman-1bf622a0ea5ab24af4aeb9f2065952376ee7fb0f.tar.gz podman-1bf622a0ea5ab24af4aeb9f2065952376ee7fb0f.tar.bz2 podman-1bf622a0ea5ab24af4aeb9f2065952376ee7fb0f.zip |
hack: ignore from all VCS files when tarballing
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'hack/get_ci_vm.sh')
-rwxr-xr-x | hack/get_ci_vm.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/get_ci_vm.sh b/hack/get_ci_vm.sh index 1d9282c05..aed0042fb 100755 --- a/hack/get_ci_vm.sh +++ b/hack/get_ci_vm.sh @@ -231,10 +231,10 @@ then "$HOME/.config/gcloud/configurations/config_default" fi -# Couldn't make rsync work with gcloud's ssh wrapper: ssh-keys generated on the fly +# Couldn't make rsync work with gcloud's ssh wrapper because ssh-keys generated on the fly TARBALL=$VMNAME.tar.bz2 echo -e "\n${YEL}Packing up local repository into a tarball.${NOR}" -showrun --background tar cjf $TMPDIR/$TARBALL --warning=no-file-changed --exclude=.git --exclude=bin -C $LIBPODROOT . +showrun --background tar cjf $TMPDIR/$TARBALL --warning=no-file-changed --exclude-vcs-ignores -C $LIBPODROOT . trap delvm INT # Allow deleting VM if CTRL-C during create # This fails if VM already exists: permit this usage to re-init |