Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit d8f3d62

Browse files
committed
fix linking
1 parent 3f63a4e commit d8f3d62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/install-package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ cd $owd
215215
$install $verbose --owner=$binuser --group=$bingroup --mode=644 $DOCS $root$prefix/share/doc/flowvisor
216216

217217
echo "Linking fvctl to fvctl-json"
218-
sudo ln -s $root$prefix/bin/$jsonscript $root$prefix/bin/$apiscript
218+
ln -s $root$prefix/bin/$jsonscript $root$prefix/bin/$apiscript
219219

220220
#$CHOWN $fvuser:$fvgroup $root$prefix/share/doc/flowvisor
221221
#if [ ! -f $root/etc/flowvisor/config.json ] ; then

scripts/install-script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ cd $owd
277277
$install $verbose --owner=$binuser --group=$bingroup --mode=644 $DOCS $root$prefix/share/doc/flowvisor
278278

279279
echo "Linking fvctl to fvctl-json"
280-
sudo ln -s $root$prefix/bin/$jsonscript $root$prefix/bin/$apiscript
280+
ln -s $root$prefix/bin/$jsonscript $root$prefix/bin/$apiscript
281281

282282
if [ ! -f $root/etc/flowvisor/config.json ] ; then
283283
echo Generating a default config FlowVisor config

0 commit comments

Comments
 (0)