Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Fix typo #24

Merged
merged 2 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/patissuer/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "patissuer",
"version": "0.0.7",
"version": "0.0.8",
"name": "PAT Issuer",
"documentationURL": "https://github.com/rickardgranberg/patissuer",
"description": "Installs the Azure DevOps Personal Access Token Issuer",
Expand Down
2 changes: 1 addition & 1 deletion src/patissuer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ has_xdg=$(which xdg-open)
has_jq=$(which jq)
set -e

if [[ -z "$has_wget" || -z "$has_xdg" || -z "$has_jq"]]; then
if [[ -z "$has_wget" || -z "$has_xdg" || -z "$has_jq" ]]; then
apt-get update -y
apt-get -y install --no-install-recommends --reinstall wget ca-certificates unzip libnss3-tools xdg-utils jq
apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
Expand Down