pkgx
pkgx copied to clipboard
Fix dev off when environment is not active
Which was previously throwing _pkgx_dev_off not found.
And also make sure to pass rm -f as some people alias rm to rm -i, which can come from the popular OMZ common-aliases: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/common-aliases#file-handling
And also make sure to pass rm -f as some people alias rm to rm -i, which can come from the popular OMZ common-aliases: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/common-aliases#file-handling
could also just be explicit about /bin/rm
to avoid dealing with aliases.
could also just be explicit about
/bin/rm
to avoid dealing with aliases.
Right, or better yet command rm
. But I find rm -f
nicer.
Of course, let me know if you want me to change it.
We should be explicit with /bin/rm
will patch that in after.