Repository: logging-log4net
Updated Branches:
  refs/heads/feature/cd-pipeline c2922f373 -> b3889c085


Jenkinsfile: escape export of packagehome


Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/b3889c08
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/b3889c08
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/b3889c08

Branch: refs/heads/feature/cd-pipeline
Commit: b3889c085598ae2af22a73a442ad345fd5b81195
Parents: c2922f3
Author: Dominik Psenner <[email protected]>
Authored: Thu Jul 6 09:50:37 2017 +0200
Committer: Dominik Psenner <[email protected]>
Committed: Thu Jul 6 09:50:37 2017 +0200

----------------------------------------------------------------------
 Jenkinsfile              | 2 +-
 netstandard/Nuget.Config | 7 +++++++
 2 files changed, 8 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/b3889c08/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index d29573d..c2d6ed3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -165,7 +165,7 @@ pipeline {
                                }
                        }
                        steps {
-                               sh "export PACKAGEHOME=$(pwd)/.nuget/"
+                               sh 'export PACKAGEHOME="$(pwd)/.nuget/"'
                                sh "rm -rf bin/ tests/"
                                checkout scm
                                

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/b3889c08/netstandard/Nuget.Config
----------------------------------------------------------------------
diff --git a/netstandard/Nuget.Config b/netstandard/Nuget.Config
new file mode 100644
index 0000000..4980d51
--- /dev/null
+++ b/netstandard/Nuget.Config
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+    <add key="repositoryPath" value=".nuget"/>
+    <activePackageSource>
+        <add key="NuGet official package source" 
value="https://nuget.org/api/v2/"; />
+    </activePackageSource>
+</configuration>

Reply via email to