From c9e85363c51e62babe7d21099cc27ea747efde56 Mon Sep 17 00:00:00 2001 From: Vishal Bhoj Date: Fri, 8 May 2015 17:31:12 +0530 Subject: disable slave type check Change-Id: Id40b9e014f319a20d98977cc39ce7b8a261df198 Signed-off-by: Vishal Bhoj --- node/build | 4 ++-- node/prepare_build_config.py | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/node/build b/node/build index 1f29b84..342f135 100755 --- a/node/build +++ b/node/build @@ -130,11 +130,11 @@ if is_on_ec2; then mkdir -p build/out/target mount -t tmpfs -o size=$ramdisk_size tmpfs build/out/target else - mkdir build/out + mkdir -p build/out fi fi else - mkdir build/out + mkdir -p build/out fi if is_on_ec2; then diff --git a/node/prepare_build_config.py b/node/prepare_build_config.py index 9fdee1c..60ddcf3 100755 --- a/node/prepare_build_config.py +++ b/node/prepare_build_config.py @@ -113,11 +113,11 @@ def main(config_in, is_base64): else: BUILD_CONFIG_FILE=BUILD_CONFIG_FILE_VPS config = convert_config_to_shell(config_in, BUILD_CONFIG_FILE) - try: - validate_config(config, get_slave_type()) - except BuildConfigMismatchException, e: - print str(e) - sys.exit(1) + #try: + # validate_config(config, get_slave_type()) + #except BuildConfigMismatchException, e: + # print str(e) + # sys.exit(1) if __name__ == "__main__": optparser = optparse.OptionParser(usage="%prog") -- cgit v1.2.3