summaryrefslogtreecommitdiff
path: root/util/env_changed.sh
diff options
context:
space:
mode:
Diffstat (limited to 'util/env_changed.sh')
-rwxr-xr-xutil/env_changed.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/util/env_changed.sh b/util/env_changed.sh
deleted file mode 100755
index 5bab64760d..0000000000
--- a/util/env_changed.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-# Copyright 2019 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# This script accepts two parameters: a file name and a string.
-#
-# If the file does not exist, or does not contain the passed in string wrapped
-# in '/*... */, the file is written with the wrapped passed in string.
-
-h_file="$1"
-current_set="/* $2 */"
-
-if [[ -f "${h_file}" ]]; then
- old_set="$(cat "${h_file}")"
- if [[ "${current_set}" == "${old_set}" ]]; then
- exit 0
- fi
-else
- dest_dir="$(dirname "${h_file}")"
- [[ -d "${dest_dir}" ]] || mkdir -p "${dest_dir}"
-fi
-printf "${current_set}" > "${h_file}"