source: trip-planner-front/node_modules/node-gyp/macOS_Catalina_acid_test.sh@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 495 bytes
Line 
1#!/bin/bash
2
3pkgs=(
4 "com.apple.pkg.DeveloperToolsCLILeo" # standalone
5 "com.apple.pkg.DeveloperToolsCLI" # from XCode
6 "com.apple.pkg.CLTools_Executables" # Mavericks
7)
8
9for pkg in "${pkgs[@]}"; do
10 output=$(/usr/sbin/pkgutil --pkg-info "$pkg" 2>/dev/null)
11 if [ "$output" ]; then
12 version=$(echo "$output" | grep 'version' | cut -d' ' -f2)
13 break
14 fi
15done
16
17if [ "$version" ]; then
18 echo "Command Line Tools version: $version"
19else
20 echo >&2 'Command Line Tools not found'
21fi
Note: See TracBrowser for help on using the repository browser.