mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
15 lines
207 B
Bash
Executable File
15 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
remote="$1"
|
|
|
|
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
|