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

Commit

Permalink
Merge pull request #20 from rickardgranberg/fix_netcat
Browse files Browse the repository at this point in the history
Fix netcat install
  • Loading branch information
rickardgranberg authored Jan 24, 2024
2 parents 89c19a6 + c269ce8 commit fb8255e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/patissuer/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"id": "patissuer",
"version": "0.0.5",
"version": "0.0.6",
"name": "PAT Issuer",
"documentationURL": "https://github.com/rickardgranberg/patissuer",
"description": "Installs the Azure DevOps Personal Access Token Issuer",
"options": {
"version": {
"type": "string",
"proposals": [
"0.1.12"
"0.2.1"
],
"default": "0.1.12",
"default": "0.2.1",
"description": "Select or enter a patissuer version"
},
"aadTenantID": {
Expand Down
4 changes: 2 additions & 2 deletions src/patissuer/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

patissuer_ver=${VERSION:-"0.1.12"}
patissuer_ver=${VERSION:-"0.2.1"}
arch="$(uname -m)"

if [[ $arch == 'x86_64' ]]; then
Expand All @@ -20,7 +20,7 @@ set -e

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 dnsutils netcat jq
apt-get -y install --no-install-recommends --reinstall wget ca-certificates unzip libnss3-tools xdg-utils dnsutils netcat-openbsd jq
apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
fi

Expand Down

0 comments on commit fb8255e

Please sign in to comment.