Skip to content
Snippets Groups Projects

Small tweaks for the rebase scripts

Open Walter Lozano requested to merge wip/wlozano/rebase-tweaks into main
All threads resolved!
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -8,7 +8,7 @@
# file, you can obtain one at http://mozilla.org/MPL/2.0/.
#
# Arguments
# -l : Germinate list of packages to import (i.e. report/target-keep.txt)
# -l : List of packages to import (i.e. report/target-keep.txt)
# -t : Private GitLab token used for the REST API
SCRIPT_DIR=$( cd -- "$( dirname -- "$0" )" &> /dev/null && pwd )
@@ -33,11 +33,11 @@ done
test "$REBASE" = "1" && ARGS="-r"
echo "Processing the germinate list ${LIST}..."
echo "Processing package list ${LIST}..."
while read p; do
echo "... processing the source package '$p'"
$SCRIPT_DIR/rebase-pkg -p ${p} ${ARGS}
done <${LIST}
echo "The germinate list ${LIST} have been processed!"
echo "The package list ${LIST} have been processed!"
Loading