8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
dir="$(realpath $1)"
|
|
|
|
docker run --rm -v "$dir":/build -w /build linuturk/mono-choco pack
|