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
+ unset OLDWD
+ OLDWD=/var/folders/8b/n_gmhmk57ks85swq3mrdbrwc0000gp/T/1892f004/src
+ mkdir -p /var/folders/8b/n_gmhmk57ks85swq3mrdbrwc0000gp/T/1892f004
+ cd /var/folders/8b/n_gmhmk57ks85swq3mrdbrwc0000gp/T/1892f004
+ mv src /opt/go.dev/v1.21.0
+ cd /var/folders/8b/n_gmhmk57ks85swq3mrdbrwc0000gp/T/1892f004/src
/var/folders/8b/n_gmhmk57ks85swq3mrdbrwc0000gp/T/1892f004/xyz.tea.build.sh: line 53: cd: /var/folders/8b/n_gmhmk57ks85swq3mrdbrwc0000gp/T/1892f004/src: No such file or directory
Makes sense, but an odd gotcha. Could be prevented with a test -d $foo || mkdir -p $foo, or similar.
The text was updated successfully, but these errors were encountered:
hah, interesting. Not really sure what we should do. User literally moved the dir.
In this case we don’t care about the working directory anymore since it is the last step. We should probs at least just support that by not changing back unless there's another step or something like that.
The following fails (go.dev-type):
with
Makes sense, but an odd gotcha. Could be prevented with a
test -d $foo || mkdir -p $foo
, or similar.The text was updated successfully, but these errors were encountered: