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
On Unix, environment variables are referenced via the $ character. On windows, its %. Which means we can't make use of either one in a cross-platform compatible library.
# Posix
$ echo$ROOTDIR'/studio'# Windows
$ echo %ROOTDIR%
'c:\studio'
How about @?
$ dash @ROOTDIR
'c:\studio'
The text was updated successfully, but these errors were encountered:
On Unix, environment variables are referenced via the
$
character. On windows, its%
. Which means we can't make use of either one in a cross-platform compatible library.How about
@
?$ dash @ROOTDIR 'c:\studio'
The text was updated successfully, but these errors were encountered: