This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo chown -R $(whoami) /usr/local | |
sudo chown -R $(whoami) $(brew --prefix)/* | |
sudo chown -R "$USER":admin /usr/local | |
sudo chown -R "$USER":admin /Library/Caches/Homebrew | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Options | |
# | |
# -V, --verbose | |
# Enable verbose output for the installer | |
# | |
# -f, -y, --force, --yes | |
# Skip the confirmation prompt during installation | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use crossbeam_channel as channel; | |
use ignore::WalkBuilder; | |
use std::path::{Path, PathBuf}; | |
#[derive(Debug)] | |
enum Message { | |
FoundPath(Result<ignore::DirEntry, ignore::Error>), | |
DoneScanning, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# STEP 1 - DEPS GETTER | |
FROM hexpm/elixir:1.10.2-erlang-22.2.7-alpine-3.11.3 AS deps-getter | |
# setup up variables | |
ARG APP_NAME | |
ARG APP_VSN | |
ARG PHOENIX_SUBDIR=. | |
ENV APP_NAME=${APP_NAME} \ | |
APP_VSN=${APP_VSN} |
OlderNewer