Skip to content

Commit 7c59d36

Browse files
committed
fixes
Signed-off-by: Kareem Farid <kareefardi@users.noreply.github.com>
1 parent 64099be commit 7c59d36

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/actions/setup-dependencies/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ runs:
5151
shell: bash
5252
if: ${{ steps.cache-mgmt.outputs.cache-hit != 'true' && inputs.cache-only != 'true' }}
5353
run: |
54-
make -C {{env.FRIGATE_ROOT }} install-mcw
54+
make -C ${{ env.FRIGATE_ROOT }} install-mcw
5555
cd ${{ env.MGMT_ROOT }}
5656
rm -rf maglef def openlane scripts signoff spi LICENSE manifest docs lib litex lvs .git .githooks .github .travisCI docs lib spef xschem .gitignore .readthedocs.yml .travis.yml README.rst README.src.rst
5757
- name: Download PANAMAX
5858
shell: bash
5959
run: |
60-
make -C {{env.FRIGATE_ROOT }} install-panamax
60+
make -C ${{ env.FRIGATE_ROOT }} install-panamax
6161
- name: Download analog
6262
shell: bash
6363
run: |
64-
make -C {{env.FRIGATE_ROOT }} install-analog
64+
make -C ${{ env.FRIGATE_ROOT }} install-analog
6565
- name: Download PDK
6666
shell: bash
6767
if: ${{ steps.cache-pdk.outputs.cache-hit != 'true' && inputs.cache-only != 'true' }}

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,6 @@ endif
223223
.PHONY: harden
224224
harden: $(designs)
225225

226-
.PHONY: echo-var
227-
echo-var:
228-
@echo $($(VAR))
229-
230-
231226
.PHONY: clean
232227
clean:
233228
rm -rf dependencies

0 commit comments

Comments
 (0)