diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-03-21 18:14:08 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-23 14:24:25 +0000 |
commit | 5d51bd1f02fb20e02d0de0ac9874d7f9a6f5ddc6 (patch) | |
tree | 63fc37af877039f2dcecf3a52aefe83457e283b1 /scripts/oe-publish-sdk | |
parent | b18f9cb62e12d068fb840fd7ab9f35b4f039e649 (diff) | |
download | openembedded-core-5d51bd1f02fb20e02d0de0ac9874d7f9a6f5ddc6.tar.gz openembedded-core-5d51bd1f02fb20e02d0de0ac9874d7f9a6f5ddc6.tar.bz2 openembedded-core-5d51bd1f02fb20e02d0de0ac9874d7f9a6f5ddc6.zip |
oe-publish-sdk: fix remote publishing
A typo in the command prevented the last part of the publish from
succeeding.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-publish-sdk')
-rwxr-xr-x | scripts/oe-publish-sdk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-publish-sdk b/scripts/oe-publish-sdk index 5dbd1e50f2..1729a0da4a 100755 --- a/scripts/oe-publish-sdk +++ b/scripts/oe-publish-sdk @@ -115,7 +115,7 @@ def publish(args): if not is_remote: cmd = 'set -e; mkdir -p %s/layers; cd %s/layers; if [ ! -e .git ]; then git init .; mv .git/hooks/post-update.sample .git/hooks/post-update; fi; git add -A .; git commit -q -m "init repo" || true; git update-server-info' % (destination, destination) else: - cmd = "ssh %s 'set -e; mkdir-p %s/layers; cd %s/layers; if [ ! -e .git ]; then git init .; mv .git/hooks/post-update.sample .git/hooks/post-update; fi; git add -A .; git commit -q -m \"init repo\" || true; git update-server-info'" % (host, destdir, destdir) + cmd = "ssh %s 'set -e; mkdir -p %s/layers; cd %s/layers; if [ ! -e .git ]; then git init .; mv .git/hooks/post-update.sample .git/hooks/post-update; fi; git add -A .; git commit -q -m \"init repo\" || true; git update-server-info'" % (host, destdir, destdir) ret = subprocess.call(cmd, shell=True) if ret == 0: logger.info('SDK published successfully') |