mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-10 13:14:56 +03:00
66551077f8
* Add support to use GNU sed installed in mac osx * Move common functions to utils.sh Co-authored-by: Swinder Pal Singh Juneja <swinder.juneja@oneplus.com>
17 lines
219 B
Bash
Executable File
17 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#All common functions can be added to this file
|
|
|
|
is_gnu_sed () {
|
|
sed --version >/dev/null 2>&1
|
|
}
|
|
|
|
replace () {
|
|
echo $1
|
|
if is_gnu_sed; then
|
|
sed -i -E "$1" $2
|
|
else
|
|
sed -i '' -E "$1" $2
|
|
fi
|
|
}
|