From 83c1b2a094a3bf5367d274a27f7e6a95ed2e117d Mon Sep 17 00:00:00 2001 From: MatMoul Date: Sat, 29 Aug 2015 23:03:34 +0200 Subject: [PATCH] Add --branch paramters for dev --- archdi | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/archdi b/archdi index f40b1df..b13b0f4 100644 --- a/archdi +++ b/archdi @@ -53,7 +53,11 @@ run(){ if [ "$chrootoption" = "true" ]; then ./lib --chroot else - ./lib --root + if [ "$branchoption" = "" ]; then + ./lib --root + else + ./lib --branch $branchoption --root + fi fi cd 2>/dev/null rm -R $cachedir 2>/dev/null