No need for && operator, run it all in the same shell

Change-Id: I2b64a580954d625733a9a820132f32e1feec864c
diff --git a/Jenkinsfile b/Jenkinsfile
index 9d38b4f..f85abea 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,7 +5,8 @@
         stage('build') {
             steps {
                 sh '''#!/bin/bash -l
-                . tools/build/envDefaults && onos-buck build onos
+                source tools/build/envDefaults
+                onos-buck build onos
                 '''
             }
         }