From 02f955aeeb803dce52c0b5cf6db9387a47ab4ee3 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 25 Aug 2011 07:42:17 +0200 Subject: [PATCH] [bin] bump_kernel_tag_mods: use eit --- bin/bump_kernel_tag_mods | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/bump_kernel_tag_mods b/bin/bump_kernel_tag_mods index 1dfafc8..c16be66 100755 --- a/bin/bump_kernel_tag_mods +++ b/bin/bump_kernel_tag_mods @@ -62,7 +62,7 @@ if normal_atoms and not only_injected: raise SystemExit(rc) subprocess.call(["etc-update"], shell = True) os.environ['ETP_REPO'] = dest_repo - rc = subprocess.call(["reagent", "update"]) + rc = subprocess.call(["eit", "commit"]) if rc != 0: raise SystemExit(rc) @@ -84,7 +84,7 @@ if injected_atoms: if tbz2s: os.environ['ETP_REPO'] = dest_repo - rc = subprocess.call(["reagent", "inject"] + tbz2s) + rc = subprocess.call(["eit", "fit"] + tbz2s) if rc != 0: raise SystemExit(rc)