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
Also, in the current version of the script I have to create a symbolic link for C:\Program Files\Slack
to the following C:\Program Files\Slack\App-Slack
Basically, the detection requires a subdirectory underneath of the Slack directory with the prefix of "App-", but that's not the location it installs to in program files.
It should just be checking "C:\Program Files\Slack" directly for resources.
The text was updated successfully, but these errors were encountered:
Current version of the script doesn't work unless I modify the script as follows (Windows 10) to encapsulate the path for unpacking the asar archive:
unpack_command = apply_sudo(sudo, "npx asar extract {0}/app.asar {0}/app.asar.unpacked".format('"' + packed_path + '"'))
and for packing the asar archive after modifications:
pack_command = apply_sudo(sudo, "npx asar pack {0}/app.asar.unpacked {0}/app.asar".format('"' + packed_path + '"'))
Also, in the current version of the script I have to create a symbolic link for
C:\Program Files\Slack
to the following
C:\Program Files\Slack\App-Slack
Basically, the detection requires a subdirectory underneath of the Slack directory with the prefix of "App-", but that's not the location it installs to in program files.
It should just be checking "C:\Program Files\Slack" directly for resources.
The text was updated successfully, but these errors were encountered: