aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Koglin-Fischer2023-12-21 15:24:15 +0100
committerStephan Koglin-Fischer2023-12-21 15:24:15 +0100
commit066786337ef0e91f245f7fda32b6e5781f63c18f (patch)
treedced99fe4403999aad35c2e450aec98b6fbcb66a
parent6a72defd8c8a5b5dbad58408a18f574446348d79 (diff)
downloadaur-066786337ef0e91f245f7fda32b6e5781f63c18f.tar.gz
bump: 1.15.1.r0.g8368d87.47
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 5 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0d46937c2a0e..6c72f28ef71c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = dashlane-cli-git
pkgdesc = Dashlane CLI GitHub repository version bundled with asdf-vm to ensure using the correct node version.
pkgver = v1.15.1.r0.g8368d87
- pkgrel = 46
+ pkgrel = 47
url = https://github.com/Dashlane/dashlane-cli
install = .INSTALL
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 9d295a2069f3..e9c6f9ef59aa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Stephan Koglin-Fischer <stephan dot koglin-fischer at funzt dot dev>
pkgname=dashlane-cli-git
pkgver=v1.15.1.r0.g8368d87
-pkgrel=46
+pkgrel=47
pkgdesc="Dashlane CLI GitHub repository version bundled with asdf-vm to ensure using the correct node version."
arch=('x86_64')
url="https://github.com/Dashlane/dashlane-cli"
@@ -32,16 +32,19 @@ check-for-asdf() {
if [[ $SHELL == *"bash"* ]]; then
# If the .bashrc file does not contain the asdf source command, we add it
if ! grep -q ". /opt/asdf-vm/asdf.sh" ~/.bashrc; then
+ echo "Patching .bashrc"
echo -e "\n. /opt/asdf-vm/asdf.sh" >> ~/.bashrc
fi
source ~/.bashrc
elif [[ $SHELL == *"fish"* ]]; then
+ echo "Patching config.fish"
# If the config.fish file does not contain the asdf source command, we add it
if ! grep -q ". /opt/asdf-vm/asdf.fish" ~/.config/fish/config.fish; then
echo -e "\n. /opt/asdf-vm/asdf.fish" >> ~/.config/fish/config.fish
fi
source ~/.config/fish/config.fish
elif [[ $SHELL == *"zsh"* ]]; then
+ echo "Patching .zshrc"
# Just to make sure that an existing zsh config is not intervening,
# we need to check that the .zshrc file contains the proper shebang #!/usr/bin/env zsh
if ! grep -q "#!/usr/bin/env zsh" ~/.zshrc; then