You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to set up the Exosense server and add the ckp.yang file, I found that the create-yang-module.sh file would not work. I'm not sure entirely the reason, but changing the "==" equalities to "=" in the bash if statements did the trick. i.e.
if [ $# = 1 ]
then
REPO=user
YANG_FILE=$1
elif [ $# = 2 ]
then
REPO=$1
YANG_FILE=$2
else
echo "Usage: $0 [user|system] yang-file"
exit 255
fi
The text was updated successfully, but these errors were encountered:
When trying to set up the Exosense server and add the ckp.yang file, I found that the create-yang-module.sh file would not work. I'm not sure entirely the reason, but changing the "==" equalities to "=" in the bash if statements did the trick. i.e.
The text was updated successfully, but these errors were encountered: