-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue in some scripts with usage of "set" command #22
Comments
also in magic_gds.sh seems to stem from the 2/22 commit "Modified the way that the magic scripts and the manager GUI handle " |
@jscatena88 Thanks for telling us about this modification. Was able to get past migration with those changes. |
I attach a patch vs main with the places I have found so far
|
This issue appears to be fixed by this commit: a2d468e Closing the issue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was receiving an error message in the GUI trying to run the "Migration" step, "set: Variable name must begin with a letter". Poking round it seems that line 169 in magic_db.sh has the issue. Specifically changing
set techfile ${techdir}/${techfile}
to
set techfile=${techdir}/${techfile}
fixed the issue. I believe there is a similar issue in magic_drc.sh line 150
The text was updated successfully, but these errors were encountered: