mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 09:23:58 +08:00
15 lines
299 B
Bash
15 lines
299 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
B2D_HOME=C:/"Program Files"/"Boot2Docker for Windows"
|
||
|
VBOX_HOME=C:/"Program Files"/Oracle/VirtualBox
|
||
|
PSQL_BIN=C:/"Program Files"/PostgreSQL/9.4/bin
|
||
|
FILENAME="wmake.sh"
|
||
|
|
||
|
# Call the "real" function
|
||
|
. wmake-main.sh $1 $2
|
||
|
|
||
|
unset B2D_HOME
|
||
|
unset VBOX_HOME
|
||
|
unset PSQL_BIN
|
||
|
unset FILENAME
|