diff options
Diffstat (limited to 'net-im/nextcloud-spreed-signaling/files/patch-scripts_get-version.sh')
-rw-r--r-- | net-im/nextcloud-spreed-signaling/files/patch-scripts_get-version.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/net-im/nextcloud-spreed-signaling/files/patch-scripts_get-version.sh b/net-im/nextcloud-spreed-signaling/files/patch-scripts_get-version.sh deleted file mode 100644 index 2eec2779da51..000000000000 --- a/net-im/nextcloud-spreed-signaling/files/patch-scripts_get-version.sh +++ /dev/null @@ -1,21 +0,0 @@ ---- scripts/get-version.sh.orig 2023-07-05 09:17:27 UTC -+++ scripts/get-version.sh -@@ -1,7 +1,6 @@ --#!/usr/bin/env bash -+#!/bin/sh - set -e --ROOT="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)" -- -+ROOT="$(cd "$( dirname $0 )" && pwd)" - VERSION= - if [ -s "$ROOT/../version.txt" ]; then - VERSION=$(cat "$ROOT/../version.txt" | tr -d '[:space:]') -@@ -15,7 +14,7 @@ if [ -z $VERSION ] && [ -d "$ROOT/../.git" ]; then - fi - - if [ -z $VERSION ]; then -- VERSION=unknown -+ VERSION=%%PORTVERSION%% - fi - - echo $VERSION |