pkgx icon indicating copy to clipboard operation
pkgx copied to clipboard

Fix dev off when environment is not active

Open felipecrs opened this issue 1 year ago • 2 comments

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

felipecrs avatar Feb 22 '24 23:02 felipecrs

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.

jhheider avatar Feb 22 '24 23:02 jhheider

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.

felipecrs avatar Feb 22 '24 23:02 felipecrs

We should be explicit with /bin/rm will patch that in after.

mxcl avatar Sep 06 '24 14:09 mxcl