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
echo"Unknown RMS_MODE: $RMS_MODE. Must be either 'standard' or 'dev'."
112
146
exit 1
113
147
fi
114
148
149
+
julia_status=$?
150
+
if [ $julia_status-ne 0 ];then
151
+
echo"RMS installation failed!"
152
+
exit$status
153
+
fi
154
+
115
155
echo"Checking if ReactionMechanismSimulator is installed in the current conda environment for Python usage..."
116
156
python -c "from juliacall import Main; import sys; sys.exit(0 if Main.seval('Base.identify_package(\"ReactionMechanismSimulator\") !== nothing') and print('ReactionMechanismSimulator is installed in $current_env') is None else 1)"
0 commit comments