mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
8 lines
121 B
Bash
Executable File
8 lines
121 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERSION=$1
|
|
SOURCE=$2
|
|
TARGET=$3
|
|
|
|
sed "s/\${VERSION}/${VERSION}/" ${SOURCE} > "${BUILT_PRODUCTS_DIR}/${TARGET}"
|