mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 16:42:50 -05:00
Add support building from path that contains space (#815)
This commit is contained in:

committed by
GitHub

parent
5892d52ed5
commit
aab6095073
50
build.sh
Normal file → Executable file
50
build.sh
Normal file → Executable file
@ -11,7 +11,7 @@ then
|
||||
|
||||
echo "Pushing Bitwarden ($TAG)"
|
||||
echo "========================"
|
||||
|
||||
|
||||
docker push bitwarden/api:$TAG
|
||||
docker push bitwarden/identity:$TAG
|
||||
docker push bitwarden/server:$TAG
|
||||
@ -26,9 +26,9 @@ then
|
||||
elif [ $# -gt 1 -a "$1" == "tag" ]
|
||||
then
|
||||
TAG=$2
|
||||
|
||||
|
||||
echo "Tagging Bitwarden as '$TAG'"
|
||||
|
||||
|
||||
docker tag bitwarden/api bitwarden/api:$TAG
|
||||
docker tag bitwarden/identity bitwarden/identity:$TAG
|
||||
docker tag bitwarden/server bitwarden/server:$TAG
|
||||
@ -44,36 +44,36 @@ else
|
||||
echo "Building Bitwarden"
|
||||
echo "=================="
|
||||
|
||||
chmod u+x $DIR/src/Api/build.sh
|
||||
$DIR/src/Api/build.sh
|
||||
chmod u+x "$DIR/src/Api/build.sh"
|
||||
"$DIR/src/Api/build.sh"
|
||||
|
||||
chmod u+x $DIR/src/Identity/build.sh
|
||||
$DIR/src/Identity/build.sh
|
||||
chmod u+x "$DIR/src/Identity/build.sh"
|
||||
"$DIR/src/Identity/build.sh"
|
||||
|
||||
chmod u+x $DIR/util/Server/build.sh
|
||||
$DIR/util/Server/build.sh
|
||||
chmod u+x "$DIR/util/Server/build.sh"
|
||||
"$DIR/util/Server/build.sh"
|
||||
|
||||
chmod u+x $DIR/util/Nginx/build.sh
|
||||
$DIR/util/Nginx/build.sh
|
||||
chmod u+x "$DIR/util/Nginx/build.sh"
|
||||
"$DIR/util/Nginx/build.sh"
|
||||
|
||||
chmod u+x $DIR/util/Attachments/build.sh
|
||||
$DIR/util/Attachments/build.sh
|
||||
chmod u+x "$DIR/util/Attachments/build.sh"
|
||||
"$DIR/util/Attachments/build.sh"
|
||||
|
||||
chmod u+x $DIR/src/Icons/build.sh
|
||||
$DIR/src/Icons/build.sh
|
||||
chmod u+x "$DIR/src/Icons/build.sh"
|
||||
"$DIR/src/Icons/build.sh"
|
||||
|
||||
chmod u+x $DIR/src/Notifications/build.sh
|
||||
$DIR/src/Notifications/build.sh
|
||||
chmod u+x "$DIR/src/Notifications/build.sh"
|
||||
"$DIR/src/Notifications/build.sh"
|
||||
|
||||
chmod u+x $DIR/src/Events/build.sh
|
||||
$DIR/src/Events/build.sh
|
||||
chmod u+x "$DIR/src/Events/build.sh"
|
||||
"$DIR/src/Events/build.sh"
|
||||
|
||||
chmod u+x $DIR/src/Admin/build.sh
|
||||
$DIR/src/Admin/build.sh
|
||||
chmod u+x "$DIR/src/Admin/build.sh"
|
||||
"$DIR/src/Admin/build.sh"
|
||||
|
||||
chmod u+x $DIR/util/MsSql/build.sh
|
||||
$DIR/util/MsSql/build.sh
|
||||
chmod u+x "$DIR/util/MsSql/build.sh"
|
||||
"$DIR/util/MsSql/build.sh"
|
||||
|
||||
chmod u+x $DIR/util/Setup/build.sh
|
||||
$DIR/util/Setup/build.sh
|
||||
chmod u+x "$DIR/util/Setup/build.sh"
|
||||
"$DIR/util/Setup/build.sh"
|
||||
fi
|
||||
|
Reference in New Issue
Block a user