Version 1.0.1

Changed the way the include file is loaded.
This commit is contained in:
Locutus73
2019-02-05 16:00:43 +01:00
committed by GitHub
parent f5b9be0420
commit bc3a7f1bca
2 changed files with 8 additions and 2 deletions

View File

@@ -18,14 +18,17 @@
# You can download the latest version of this script from:
# https://github.com/MiSTer-devel/Scripts_MiSTer
# Version 1.0.1 - 2019-02-05 - Changed the way the include file is loaded.
# Version 1.0 - 2019-02-02 - First commit
SCRIPT_PATH="$(realpath "$0")"
GDRIVE_URL="https://github.com/odeke-em/drive"
GDRIVE_COMMAND="gdrive"
GDRIVE_OPTIONS="pull -exclude-ops delete -ignore-conflict -no-prompt"
BASE_PATH="/media/fat"
SYNC_PATH="$BASE_PATH/saves"
source "$(dirname $(readlink -f $0))/gdrive.sh.inc"
source "$(dirname "$SCRIPT_PATH")/gdrive.sh.inc"

View File

@@ -18,14 +18,17 @@
# You can download the latest version of this script from:
# https://github.com/MiSTer-devel/Scripts_MiSTer
# Version 1.0.1 - 2019-02-05 - Changed the way the include file is loaded.
# Version 1.0 - 2019-02-02 - First commit
SCRIPT_PATH="$(realpath "$0")"
GDRIVE_URL="https://github.com/odeke-em/drive"
GDRIVE_COMMAND="gdrive"
GDRIVE_OPTIONS="push -exclude-ops delete -ignore-conflict -no-prompt"
BASE_PATH="/media/fat"
SYNC_PATH="$BASE_PATH/saves"
source "$(dirname $(readlink -f $0))/gdrive.sh.inc"
source "$(dirname "$SCRIPT_PATH")/gdrive.sh.inc"