1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-06-28 22:56:21 +03:00

[nanonote-files] reflash_ben.sh: fix -d using correct path

This commit is contained in:
Xiangfu Liu 2011-05-24 11:15:36 +08:00
parent bfff7c1cb2
commit cb0fb36a9d

View File

@ -30,11 +30,12 @@ do
case $OPTIONS in
d)
VERSION=$OPTARG # override version by first argument if passed
WORKING_DIR="${HOME}/.qi/nanonote/ben/${VERSION}"
;;
l)
WORKING_DIR=$OPTARG
PROTOCOL="file"
VERSION="Local"
VERSION="local"
WORKING_DIR=$OPTARG
;;
b)
ALL="FALSE"
@ -143,8 +144,6 @@ progress_finish () {
cat "${LOG_FILE}.err" >> "${LOG_FILE}"
}
[ "$(whoami)" == "root" ] || abort "this script must be run as root"
log "working dir: ${WORKING_DIR}"
log "chosen method: ${PROTOCOL}"
test ${VERSION} && log "chosen version: ${VERSION}"