Skip to content
Snippets Groups Projects
Commit 0156bc78 authored by patacongo's avatar patacongo
Browse files

Turn off script debug

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@533 42af7a65-404d-4744-a932-0658087f49c3
parent 32c3e79e
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@
# POSSIBILITY OF SUCH DAMAGE.
#
############################################################################
set -x
#set -x
src=$1
dest=$2
......@@ -84,4 +84,4 @@ fi
# Create the soft link
ln -s "${src}" "${dest}" || \
{ echo "Failed to create link: $dest" ; exit 1 ; }
\ No newline at end of file
{ echo "Failed to create link: $dest" ; exit 1 ; }
......@@ -44,6 +44,7 @@
# as a replacement for the 'ln' command. This scrpt will simply copy the
# directory into the expected positiion.
#
#set -x
src=$1
dest=$2
......@@ -97,4 +98,5 @@ fi
cp -a "${src}" "${dest}" || \
{ echo "Failed to create link: $dest" ; rm -rf ${dest} ; exit 1 ; }
touch "${dest}/.fakelnk" || \
{ echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; }
\ No newline at end of file
{ echo "Failed to touch ${dest}/.fakelnk" ; rm -rf ${dest} ; exit 1 ; }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment