-
Notifications
You must be signed in to change notification settings - Fork 234
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
[scriptassist.pl] Move scripts to autorun directory when symlinks are not supported #760
Comments
which system does not support symlinks o_O? |
note, we are probably going to solve this in Irssi through /set script_autorun somehow |
$ lsb_release -i
Distributor ID: Debian That's not Debian's fault, though; the chief offender is: $ df -T | grep --max-count=1 "$HOME" | tr -s ' ' | cut -d' ' -f2
cifs |
That's horrible, there must be a better way |
the same in a other way |
with a script in alpha state
|
I have an irssi session on which symlinks are not supported.
Whenever I update my scripts via
/scriptassist update all
and restart my session later, those updated scripts are not ran automatically at startup. Trying to do this by hand doesn't work as well:Obviously, what's happening under the hood is:
$ pwd /home/users/mataha/.irssi/scripts $ ln -s adv_windowlist.pl autorun ln: failed to create symbolic link ‘autorun/adv_windowlist.pl’: Operation not supported
Right now I'm using an ad lib bash script to move (updated) scripts manually into autorun directory whenever I perform an update, but I feel this could be integrated into
scriptassist
itself.The text was updated successfully, but these errors were encountered: