From 3efe187782e09500e44f288609ab6e4cf501b1a4 Mon Sep 17 00:00:00 2001 From: ezk Date: Mon, 4 Feb 2019 23:03:33 +0000 Subject: [PATCH] fix remotes for final wrapfs locations --- fix-remotes.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fix-remotes.sh b/fix-remotes.sh index 72d6c45..7eb7bb9 100755 --- a/fix-remotes.sh +++ b/fix-remotes.sh @@ -1,7 +1,7 @@ #!/bin/sh # fix/conform all remotes/URLs for wrapfs GIT repos -FSL_GIT="ssh://git.fsl.cs.sunysb.edu/scm/git/ROHIT" +FSL_GIT="ssh://git.fsl.cs.sunysb.edu/scm/git" KORG_GIT="git://git.kernel.org/pub/scm/linux/kernel/git" # function to execute commands @@ -27,7 +27,7 @@ fi # find out what repo I'm supposed to be (allow override from cmd-line) if test -z "$1"; then - THIS_REPO=`basename $PWD | sed -e 's/^wrapfs-//'` + THIS_REPO=`basename $PWD | sed -e 's/^wrapfs-//' -e 's/\.y$//'` else THIS_REPO="$1" fi @@ -36,7 +36,7 @@ case "$THIS_REPO" in 2.6.* | 3.* | 4.* | 5.* | latest ) ;; * ) echo This repo is unknown: $THIS_REPO exit 1 - ;; + ;; esac # verify we have both master and wrapfs branches -- 2.43.0