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
https://vault.example.com/ /secret/apps/> ls
...
dev
dev/
...
# I want to remove `dev` but keep `dev/`
https://vault.example.com/ /secret/apps/> rm dev
Removed /secret/apps/dev/xxx/yyy
# BUG: `dev/` is being deleted - should delete `dev`
# try the same with context menu - selecting proper item with <tab>-key menu
https://vault.example.com/ /secret/apps/> rm dev
Removed /secret/apps/dev/xxx/yyy
# BUG: `dev/` is being deleted - should delete `dev`
The text was updated successfully, but these errors were encountered:
Side note: I need to patch Makefile every time I build, because it results in errors on Mac. I will fix it in my PR, but here is how it looks like:
$ make cross-compile
rm ./build/* || true
mkdir -p ./build/
for GOOS in linux darwin; do \
for GOARCH in 386 amd64; do \
export GOOS=$GOOS; \
export GOARCH=$GOARCH; \
go build -ldflags "-X main.vshVersion=-n v0.5.0" -o build/vsh_${GOOS}_${GOARCH}; \
done \
done
# github.com/fishi0x01/vsh
usage: link [options] main.o
...
Note this part: go build -ldflags "-X main.vshVersion=-n v0.5.0" - the -n should not be there :)
Consider using VERSION := $(shell git describe --tags --always --dirty) for discovering git version in one line.
Affects version: 0.5.0, Mac
Here a scenario to reproduce:
The text was updated successfully, but these errors were encountered: