aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/unix/SetEnvVar.sh
blob: 3f457bb497d32dabc429456206aecfb3d2271312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
# Copyright (C) 2023 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

# A helper script used for setting environment variables on Unix systems

set -ex

function SetEnvVar {
    name=$1
    path=$2

    echo "Setting environment variable $name to $path."

    if uname -a |grep -q -E "Ubuntu|Debian"; then
        if lsb_release -a |grep "Ubuntu 22.04"; then
            echo "export $name=$path" >> ~/.bashrc
            echo "export $name=$path" >> ~/.bash_profile
        else
            echo "export $name=$path" >> ~/.profile
        fi
    else
        echo "export $name=$path" >> ~/.bashrc
        echo "export $name=$path" >> ~/.zshrc
        echo "export $name=$path" >> ~/.zshenv
        echo "export $name=$path" >> ~/.zprofile
    fi
}