Fix apt* shell

The Bash process substitution doesn't work (anymore?).
master
Andrea Cardaci 2019-01-21 15:40:28 +01:00
parent f6b29ce958
commit 4fdaada820
2 changed files with 8 additions and 2 deletions

View File

@ -11,5 +11,8 @@ functions:
sudo apt-get changelog apt
!/bin/sh
- description: For this to work the target package (e.g., `sl`) must not be installed.
code: sudo apt-get install -c <(echo 'Dpkg::Pre-Invoke {"/bin/sh;false"}') sl
code: |
TF=$(mktemp)
echo 'Dpkg::Pre-Invoke {"/bin/sh;false"}' > $TF
sudo apt-get install -c $TF sl
---

View File

@ -11,5 +11,8 @@ functions:
sudo apt-get changelog apt
!/bin/sh
- description: For this to work the target package (e.g., `sl`) must not be installed.
code: sudo apt install -c <(echo 'Dpkg::Pre-Invoke {"/bin/sh;false"}') sl
code: |
TF=$(mktemp)
echo 'Dpkg::Pre-Invoke {"/bin/sh;false"}' > $TF
sudo apt install -c $TF sl
---