about summary refs log tree commit diff
path: root/pkgs/build-support/fetchmtn
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-01-16 00:08:12 +0200
committerArtturin <Artturin@artturin.com>2023-01-16 00:08:12 +0200
commitfe1c7a1945d462489af03ea88e56d46b1a721e53 (patch)
tree5cd876c7aa330d33f4570a0129144d55e68f7e36 /pkgs/build-support/fetchmtn
parent856f3a46b2f64d4481ced392e1ebc86f09551521 (diff)
treewide: remove usages of header and stopNest
they're obsolete
Diffstat (limited to 'pkgs/build-support/fetchmtn')
-rw-r--r--pkgs/build-support/fetchmtn/builder.sh12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/build-support/fetchmtn/builder.sh b/pkgs/build-support/fetchmtn/builder.sh
index 7db66730dab82..1aabd7949ee1d 100644
--- a/pkgs/build-support/fetchmtn/builder.sh
+++ b/pkgs/build-support/fetchmtn/builder.sh
@@ -8,7 +8,7 @@ if ! [ -f "$cacheDB" ]; then
     mtn --db "$cacheDB" db init
 fi
 
-header "getting revision $selector";
+echo "getting revision $selector";
 
 done=;
 for source in $dbs; do
@@ -32,9 +32,7 @@ for source in $dbs; do
     fi;
 done;
 
-stopNest;
-
-header "checking out the revision $revision";
+echo "checking out the revision $revision";
 
 if test -n "$done"; then
     mtn checkout --db "$cacheDB" -r "$revision" "$out" -b "${branch}"
@@ -43,10 +41,6 @@ else
     exit 1;
 fi;
 
-stopNest
-
-header "clearing _MTN in the output"
+echo "clearing _MTN in the output"
 
 rm -rf "$out/_MTN"
-
-stopNest