7 lines
55 B
Bash
7 lines
55 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -u
|
||
|
set -e
|
||
|
|
||
|
echo "post-build.sh was run"
|