File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
registry/coder/modules/claude-code/scripts Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,7 @@ main() {
114114 echo " 🔍 Detecting modified modules..."
115115
116116 local changed_files
117+ echo " git diff --name-only ${base_ref} ...HEAD"
117118 changed_files=$( git diff --name-only " ${base_ref} " ...HEAD)
118119 local modules
119120 modules=$( echo " $changed_files " | grep -E ' ^registry/[^/]+/modules/[^/]+/' | cut -d' /' -f1-4 | sort -u)
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
33
4- source " $HOME " /.bashrc
4+ if [ -f " $HOME /.bashrc" ]; then
5+ source " $HOME " /.bashrc
6+ fi
57
68BOLD=' \033[0;1m'
79
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
33
4- source " $HOME " /.bashrc
4+ if [ -f " $HOME /.bashrc" ]; then
5+ source " $HOME " /.bashrc
6+ fi
57export PATH=" $HOME /.local/bin:$PATH "
68
79command_exists () {
You can’t perform that action at this time.
0 commit comments