diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-01-20 12:33:15 -0500 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-01-20 12:34:52 -0500 |
| commit | 3320d4feeb22b2015c26a17309818465cf7272b0 (patch) | |
| tree | 38be2063eb537e0f877c9e3f3038b8518b228f88 | |
| parent | 90b9a9561900d4e59531c9e15749b76728c09f6b (diff) | |
Move dotnet to a per-platform dependency
| -rwxr-xr-x | build | 3 | ||||
| -rw-r--r-- | deployment/debian-x64/dependencies.txt | 1 | ||||
| -rw-r--r-- | deployment/linux-x64/dependencies.txt | 1 | ||||
| -rw-r--r-- | deployment/osx-x64/dependencies.txt | 1 | ||||
| -rw-r--r-- | deployment/ubuntu-x64/dependencies.txt | 1 | ||||
| -rw-r--r-- | deployment/win-generic/dependencies.txt | 1 | ||||
| -rw-r--r-- | deployment/win-x64/dependencies.txt | 1 | ||||
| -rw-r--r-- | deployment/win-x86/dependencies.txt | 1 |
8 files changed, 8 insertions, 2 deletions
@@ -15,8 +15,7 @@ declare -a platforms=( $( # The list of standard dependencies required by all build scripts; individual # action scripts may specify their own dependencies -declare -a dependencies -dependencies=( 'tar' 'zip' 'dotnet' ) +declare -a dependencies=( 'tar' 'zip' ) usage() { echo -e "build - build Jellyfin binaries or packages" diff --git a/deployment/debian-x64/dependencies.txt b/deployment/debian-x64/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/debian-x64/dependencies.txt @@ -0,0 +1 @@ +dotnet diff --git a/deployment/linux-x64/dependencies.txt b/deployment/linux-x64/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/linux-x64/dependencies.txt @@ -0,0 +1 @@ +dotnet diff --git a/deployment/osx-x64/dependencies.txt b/deployment/osx-x64/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/osx-x64/dependencies.txt @@ -0,0 +1 @@ +dotnet diff --git a/deployment/ubuntu-x64/dependencies.txt b/deployment/ubuntu-x64/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/ubuntu-x64/dependencies.txt @@ -0,0 +1 @@ +dotnet diff --git a/deployment/win-generic/dependencies.txt b/deployment/win-generic/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/win-generic/dependencies.txt @@ -0,0 +1 @@ +dotnet diff --git a/deployment/win-x64/dependencies.txt b/deployment/win-x64/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/win-x64/dependencies.txt @@ -0,0 +1 @@ +dotnet diff --git a/deployment/win-x86/dependencies.txt b/deployment/win-x86/dependencies.txt new file mode 100644 index 000000000..3d25d1bdf --- /dev/null +++ b/deployment/win-x86/dependencies.txt @@ -0,0 +1 @@ +dotnet |
