forked from FlexBE/flexbe_app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feature/install_support' into de…
…velop
- Loading branch information
Showing
18 changed files
with
187 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1 @@ | ||
lib/* | ||
locales/* | ||
swiftshader/* | ||
credits.html | ||
icudtl.dat | ||
natives_blob.bin | ||
nw | ||
nw_100_percent.pak | ||
nw_200_percent.pak | ||
resources.pak | ||
snapshot_blob.bin | ||
|
||
nwjs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
#!/bin/bash | ||
|
||
NW="$(rospack find flexbe_app)/nw" | ||
if [ ! -x "${NW}" ]; then | ||
ROOT_PATH="$(rospack find flexbe_app)" | ||
NW=$ROOT_PATH/nwjs/nw | ||
if [ ! -f $NW ]; then | ||
ROOT_PATH=. | ||
NW=$ROOT_PATH/nwjs/nw | ||
fi | ||
if [ ! -x $NW ]; then | ||
echo "Cannot run flexbe_app, need to download nwjs first." | ||
echo "Please build flexbe_app via catkin before using it or run the following command now:" | ||
echo " rosrun flexbe_app nwjs_install" | ||
exit -1 | ||
fi | ||
|
||
"$NW" --password-store=basic "$@" | ||
"$NW" --password-store=basic $ROOT_PATH "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.