summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2018-02-28 16:47:00 +0100
committerKarel Kočí <karel.koci@nic.cz>2018-02-28 16:47:00 +0100
commit87e5f6678643b6debdc30238080fa5ba3fe9f698 (patch)
treebbe3fe3b78622eaf2daf90e80d834d7cecbdc5ef
parent0252e35c9c3b08884074aec710fe5ada32a89a82 (diff)
downloadturris-mymedkit-87e5f6678643b6debdc30238080fa5ba3fe9f698.tar.gz
turris-mymedkit-87e5f6678643b6debdc30238080fa5ba3fe9f698.tar.bz2
turris-mymedkit-87e5f6678643b6debdc30238080fa5ba3fe9f698.zip
Drop --version switch
It was a bad idea. I don't need it and I don't see it as overall usable.
-rwxr-xr-xbuild_medkit.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/build_medkit.sh b/build_medkit.sh
index e039723..e70df5e 100755
--- a/build_medkit.sh
+++ b/build_medkit.sh
@@ -36,11 +36,6 @@ while [ $# -gt 0 ]; do
echo " What lists should be added to medkit. In default no"
echo " additional lists will be added. Multiple lists can be"
echo " specified by separating them by commas."
- echo " --version VERSION"
- echo " This option allows you to specify exact Turris OS version."
- echo " If you do so then archive will be used for generating medkit"
- echo " (this means that using latest version won't work with this"
- echo " option)."
echo " --updater-script FILE"
echo " Run file as updater's script. It is executed after primary"
echo " entry script of this tool."
@@ -59,12 +54,6 @@ while [ $# -gt 0 ]; do
shift
LISTS="$1"
;;
- --version)
- shift
- VERSION="$1"
- echo "Version option is not yet implemented."
- exit 1
- ;;
--updater-script)
shift
UPDATER_SCRIPT="$1"