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

Commit 9031657

Browse files
committed
fix again
1 parent d8f3d62 commit 9031657

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

scripts/install-package.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,8 @@ 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-
ln -s $root$prefix/bin/$jsonscript $root$prefix/bin/$apiscript
218+
cd $root$prefix/bin
219+
ln -s $jsonscript $apiscript
219220

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

scripts/install-script.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,8 @@ 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-
ln -s $root$prefix/bin/$jsonscript $root$prefix/bin/$apiscript
280+
cd $root$prefix/bin
281+
ln -s $jsonscript $apiscript
281282

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

0 commit comments

Comments
 (0)