From 179059f63e9eea031c81df56e88fab11f808948e Mon Sep 17 00:00:00 2001 From: Vasili Skurydzin Date: Tue, 19 Jun 2018 20:00:41 +0000 Subject: [PATCH] AIX: Enable usage of fetch and gclient Change-Id: I4fe559cb44ccd9c6b037b7b096b088adf652ef9b Reviewed-on: https://chromium-review.googlesource.com/1102718 Commit-Queue: Dirk Pranke Reviewed-by: Robbie Iannucci Reviewed-by: Dirk Pranke --- cipd | 2 +- download_from_google_storage.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cipd b/cipd index 16a5f64c2..e75f7bfcd 100755 --- a/cipd +++ b/cipd @@ -28,7 +28,7 @@ case $UNAME in PLAT=mac ;; *) - echo "UNKNOWN OS: $UNAME" + echo "cipd not supported on $UNAME" exit 1 esac diff --git a/download_from_google_storage.py b/download_from_google_storage.py index 4d6266a23..657bc6353 100755 --- a/download_from_google_storage.py +++ b/download_from_google_storage.py @@ -34,6 +34,8 @@ PLATFORM_MAPPING = { 'darwin': 'mac', 'linux2': 'linux', 'win32': 'win', + 'aix6': 'aix', + 'aix7': 'aix', }