Skip to content

Commit 5062c83

Browse files
authored
Merge pull request #3 from ryanmac/fix/move-examples-to-conductor-dir
Move examples directory to .conductor/examples to avoid conflicts
2 parents 70e97e4 + 747601d commit 5062c83

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ demo: ## Create and run a full demo
2828
@echo ""
2929
@echo "🎼 Installing conductor-score..."
3030
@cd /tmp/conductor-demo && cp -r $(PWD)/.conductor .
31-
@cd /tmp/conductor-demo && cp -r $(PWD)/examples .
31+
@cd /tmp/conductor-demo && cp -r $(PWD)/examples .conductor/
3232
@cd /tmp/conductor-demo && cp $(PWD)/setup.py .
3333
@cd /tmp/conductor-demo && cp $(PWD)/.gitignore .conductor-gitignore
3434
@cd /tmp/conductor-demo && cat .conductor-gitignore >> .gitignore || cp .conductor-gitignore .gitignore

conductor-init.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ cp "$TEMP_DIR/VERSION" . || {
117117
read -p "Do you want to copy example configurations (recommended for new users)? [Y/n]: " -n 1 -r
118118
echo ""
119119
if [[ $REPLY =~ ^[Yy]$ ]] || [[ -z $REPLY ]]; then
120-
cp -r "$TEMP_DIR/examples" . || {
120+
cp -r "$TEMP_DIR/examples" .conductor/ || {
121121
echo -e "${YELLOW}⚠️ Failed to copy examples directory (continuing anyway).${NC}"
122122
}
123-
echo -e "${GREEN}✅ Examples copied.${NC}"
123+
echo -e "${GREEN}✅ Examples copied to .conductor/examples.${NC}"
124124
fi
125125

126126
# Clean up temp dir

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ echo ""
8585
echo "📚 Next steps:"
8686
echo " 1. Check the README.md for usage instructions"
8787
echo " 2. Run 'python setup.py --help' for setup options"
88-
echo " 3. Explore the examples/ directory for templates"
88+
echo " 3. Explore the .conductor/examples/ directory for templates"

0 commit comments

Comments
 (0)