Skip to content

Commit e2b4ebe

Browse files
committed
move dir
1 parent 34a1666 commit e2b4ebe

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@ jobs:
3333
run: |
3434
mkdir -p "$TANGRAM_CI_DIR/bin"
3535
cat > "$TANGRAM_CI_DIR/config.json" << 'EOF'
36-
{}
36+
{
37+
"directory": "$TANGRAM_CI_DIR/.tangram"
38+
}
3739
EOF
3840
cat > "$TANGRAM_CI_DIR/bin/tangram" << 'EOF'
3941
#!/bin/sh
40-
exec tangram --directory "$TANGRAM_CI_DIR" --config "$TANGRAM_CI_DIR/config.json" "$@"
42+
exec tangram --config "$TANGRAM_CI_DIR/config.json" "$@"
4143
EOF
4244
chmod +x "$TANGRAM_CI_DIR/bin/tangram"
4345
@@ -73,11 +75,13 @@ jobs:
7375
run: |
7476
mkdir -p "$TANGRAM_CI_DIR/bin"
7577
cat > "$TANGRAM_CI_DIR/config.json" << 'EOF'
76-
{}
78+
{
79+
"directory": "$TANGRAM_CI_DIR/.tangram"
80+
}
7781
EOF
7882
cat > "$TANGRAM_CI_DIR/bin/tangram" << 'EOF'
7983
#!/bin/sh
80-
exec tangram --directory "$TANGRAM_CI_DIR" --config "$TANGRAM_CI_DIR/config.json" "$@"
84+
exec tangram --config "$TANGRAM_CI_DIR/config.json" "$@"
8185
EOF
8286
chmod +x "$TANGRAM_CI_DIR/bin/tangram"
8387

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
node_modules
33
tangram.lock
44
target
5+
Claude.md

0 commit comments

Comments
 (0)