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
SV executes a bash script called svpost when converting simulation results. The script sets up some paths and things and then executes the svpost binary using
$SV_HOME/bin/svpost $*
The $* operator converts arguments with spaces into separate arguments. This causes svpost to fail opening the restart file.
The $* operator needs to be replaced with "$@"
$SV_HOME/bin/svpost "$@"
The text was updated successfully, but these errors were encountered:
SV executes a bash script called svpost when converting simulation results. The script sets up some paths and things and then executes the svpost binary using
The $* operator converts arguments with spaces into separate arguments. This causes svpost to fail opening the restart file.
The $* operator needs to be replaced with "$@"
The text was updated successfully, but these errors were encountered: