summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Correia2016-08-30 12:27:05 -0400
committerSergio Correia2016-08-30 12:27:05 -0400
commit712c870f20bf350e724445f6b524db56a67864ef (patch)
treec5894cf1757c6bfb839a2efcb6d91aa9a4ba1a35
parent4fc942735fe0483c41a06b1138cb4cc09ce00d0a (diff)
downloadaur-712c870f20bf350e724445f6b524db56a67864ef.tar.gz
Do not try to publish if build did not suceeed
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
-rwxr-xr-xbuild.sh3
3 files changed, 6 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index acfccc07aff4..9e0b78336b45 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
# Generated by makepkg 5.0.1
-# Fri Aug 26 20:04:19 UTC 2016
+# Tue Aug 30 16:26:31 UTC 2016
pkgbase = powershell-git
pkgdesc = A cross-platform automation and configuration tool/framework.
- pkgver = 6.0.0.alpha.9.139.ge4f3f8f
+ pkgver = 6.0.0.alpha.9.192.g901af51
pkgrel = 1
url = https://github.com/PowerShell/PowerShell
arch = x86_64
@@ -21,7 +21,7 @@ pkgbase = powershell-git
source = build.sh
sha256sums = SKIP
sha256sums = e903a41166648f2e6113dff83b116e9ed6a5dc7d302ac24ae26811583bcb9cc2
- sha256sums = 51d1be9e003e79a7c8d6ac134a1b267fc0af719839273151f8b3fcd40a284903
+ sha256sums = 50f3e73f74a9b90bf1dcaf702e1fd971f35d685f4bd5a9322970644108933f4e
pkgname = powershell-git
diff --git a/PKGBUILD b/PKGBUILD
index 82bb10ee985a..5dfe9ad81ae5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname='powershell-git'
_pkgname='powershell'
-pkgver=6.0.0.alpha.9.139.ge4f3f8f
+pkgver=6.0.0.alpha.9.192.g901af51
pkgrel=1
pkgdesc="A cross-platform automation and configuration tool/framework."
arch=('x86_64')
@@ -17,7 +17,7 @@ source=($_pkgname::'git://github.com/PowerShell/PowerShell.git'
'build.sh')
sha256sums=('SKIP'
'e903a41166648f2e6113dff83b116e9ed6a5dc7d302ac24ae26811583bcb9cc2'
- '51d1be9e003e79a7c8d6ac134a1b267fc0af719839273151f8b3fcd40a284903')
+ '50f3e73f74a9b90bf1dcaf702e1fd971f35d685f4bd5a9322970644108933f4e')
pkgver() {
cd "${_pkgname}"
diff --git a/build.sh b/build.sh
index 5edcccf95a1c..612d7ddd20a1 100755
--- a/build.sh
+++ b/build.sh
@@ -13,7 +13,6 @@ dotnet run -c Linux ../Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/CorePsT
popd
cd src/powershell-unix
-dotnet build -c Linux
-dotnet publish --no-build -c Linux
+dotnet build -c Linux && dotnet publish --no-build -c Linux
# vim:set ts=2 sw=2 et: