mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-04 11:43:04 +00:00
13 lines
179 B
Bash
Executable File
13 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = "tarout" ]
|
|
then
|
|
tar --directory /tmp -cf - -S mobylinux.vhd
|
|
else
|
|
./bake-azure.sh "$@" 1>&2
|
|
if [ "$1" = "uploadvhd" ]
|
|
then
|
|
cat vhd_blob_url.out
|
|
fi
|
|
fi
|