diff --git a/l2ork_addons/tar_em_up.sh b/l2ork_addons/tar_em_up.sh
index e42adcf09a7a095aa5c3908d70c369d1a9000158..730c68a950c3bf45bb127322cfa3d541955c018c 100755
--- a/l2ork_addons/tar_em_up.sh
+++ b/l2ork_addons/tar_em_up.sh
@@ -40,6 +40,56 @@ pkg=1
 inno=0
 dmg=0
 
+while getopts ":abBcdefFnRruwXzZ" Option
+do case $Option in
+		a)		addon=1;;
+
+		b)		deb=1
+				inst_dir=${inst_dir:-/usr};;
+
+		B)		deb=2
+				inst_dir=${inst_dir:-/usr};;
+
+		c)		core=1;;
+
+		e)		addon=1
+				core=1
+				full=1;;
+
+		f)		full=1;;
+
+		F)		full=2;;
+
+		n)		pkg=0;;
+
+		R)		deb=2
+				inst_dir=/usr
+				rpi=1;;
+
+		r)		deb=1
+				inst_dir=/usr
+				rpi=1;;
+
+		w)		sys_cwiid=1
+				;;
+
+		X)		dmg=1
+				inst_dir=/usr;;
+
+		z)		inno=1
+				inst_dir=/usr;;
+
+		Z)		inno=2
+				inst_dir=/usr;;
+
+		*)		echo "Error: unknown option";;
+	esac
+done
+
+inst_dir=${inst_dir:-/usr/local}
+
+export TAR_EM_UP_PREFIX=$inst_dir
+
 # Get the OS we're running under, normalized to names that can be used
 # to fetch the nwjs binaries below
 
@@ -121,57 +171,6 @@ if [[ $os == "win" ]]; then
 	fi
 fi
 
-
-while getopts ":abBcdefFnRruwXzZ" Option
-do case $Option in
-		a)		addon=1;;
-
-		b)		deb=1
-				inst_dir=${inst_dir:-/usr};;
-
-		B)		deb=2
-				inst_dir=${inst_dir:-/usr};;
-
-		c)		core=1;;
-
-		e)		addon=1
-				core=1
-				full=1;;
-
-		f)		full=1;;
-
-		F)		full=2;;
-
-		n)		pkg=0;;
-
-		R)		deb=2
-				inst_dir=/usr
-				rpi=1;;
-
-		r)		deb=1
-				inst_dir=/usr
-				rpi=1;;
-
-		w)		sys_cwiid=1
-				;;
-
-		X)		dmg=1
-				inst_dir=/usr;;
-
-		z)		inno=1
-				inst_dir=/usr;;
-
-		Z)		inno=2
-				inst_dir=/usr;;
-
-		*)		echo "Error: unknown option";;
-	esac
-done
-
-inst_dir=${inst_dir:-/usr/local}
-
-export TAR_EM_UP_PREFIX=$inst_dir
-
 cd ../
 
 if [ $core -eq 1 ]