mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 11:25:41 +03:00
13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$remote" == "enterprise" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [ -f version/version_ent.go ]; then
|
|
echo "Found enterprise version file while pushing to oss remote"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|