[oe-commits] Ed Bartosh : create-pull-request: cleanup bashisms

git at git.openembedded.org git at git.openembedded.org
Sun Aug 16 08:32:21 UTC 2015


Module: openembedded-core.git
Branch: master
Commit: b5c77a94b97b316b7ea075841d18b73e6dccbf2d
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=b5c77a94b97b316b7ea075841d18b73e6dccbf2d

Author: Ed Bartosh <ed.bartosh at linux.intel.com>
Date:   Wed Aug 12 12:33:31 2015 +0300

create-pull-request: cleanup bashisms

Made create-pull-request POSIX compatible:
   - Replaced /bin/bash -> /bin/sh in shebang.
   - Replaced usage of pushd/popd with generic shell commands.
   - Tested on zsh and dash.

Signed-off-by: Ed Bartosh <ed.bartosh at linux.intel.com>
Signed-off-by: Ross Burton <ross.burton at intel.com>

---

 scripts/create-pull-request | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/scripts/create-pull-request b/scripts/create-pull-request
index be49379..19ba588 100755
--- a/scripts/create-pull-request
+++ b/scripts/create-pull-request
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 #
 # Copyright (c) 2010-2013,  Intel Corporation.
 # All Rights Reserved
@@ -177,14 +177,15 @@ mkdir $ODIR
 
 if [ -n "$RELDIR" ]; then
 	ODIR=$(realpath $ODIR)
-	pushd $RELDIR > /dev/null
+	pdir=$(pwd)
+	cd $RELDIR
 	extraopts="--relative"
 fi
 
 # Generate the patches and cover letter
 git format-patch $extraopts -M40 --subject-prefix="$PREFIX" -n -o $ODIR --thread=shallow --cover-letter $RELATIVE_TO..$COMMIT_ID > /dev/null
 
-[ -n "$RELDIR" ] && popd > /dev/null
+[ -n "$RELDIR" ] && cd $pdir
 
 # Customize the cover letter
 CL="$ODIR/0000-cover-letter.patch"



More information about the Openembedded-commits mailing list