Turn off script debug

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@533 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2008-01-09 00:07:03 +00:00
parent 32c3e79ece
commit 0156bc785f
2 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -33,7 +33,7 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
# #
############################################################################ ############################################################################
set -x #set -x
src=$1 src=$1
dest=$2 dest=$2
@@ -84,4 +84,4 @@ fi
# Create the soft link # Create the soft link
ln -s "${src}" "${dest}" || \ ln -s "${src}" "${dest}" || \
{ echo "Failed to create link: $dest" ; exit 1 ; } { echo "Failed to create link: $dest" ; exit 1 ; }
+3 -1
View File
@@ -44,6 +44,7 @@
# as a replacement for the 'ln' command. This scrpt will simply copy the # as a replacement for the 'ln' command. This scrpt will simply copy the
# directory into the expected positiion. # directory into the expected positiion.
# #
#set -x
src=$1 src=$1
dest=$2 dest=$2
@@ -97,4 +98,5 @@ fi
cp -a "${src}" "${dest}" || \ cp -a "${src}" "${dest}" || \
{ echo "Failed to create link: $dest" ; rm -rf ${dest} ; exit 1 ; } { echo "Failed to create link: $dest" ; rm -rf ${dest} ; exit 1 ; }
touch "${dest}/.fakelnk" || \ touch "${dest}/.fakelnk" || \
{ echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; } { echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; }