mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-10-31 23:16:32 +00:00
8 lines
159 B
Bash
Executable File
8 lines
159 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Try to link all local bin assets specific to macOS
|
|
|
|
for f in "$DEFAULT_ASSETS_PATH"/* ; do
|
|
try_link "$f" "$USER_BIN/$(basename "$f")"
|
|
done
|