mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 10:10:12 +00:00
11 lines
177 B
Bash
Executable File
11 lines
177 B
Bash
Executable File
#!/usr/bin/env bash
|
|
DIR=$( cd $(dirname $0) ; pwd -P )
|
|
|
|
cd $DIR/../
|
|
|
|
echo "Publishing docker image..."
|
|
sbt clean docker:publish
|
|
publish_result=$?
|
|
cd $DIR
|
|
exit ${publish_result}
|