Skip to content

Commit 9273f51

Browse files
committed
Simplify bat files
1 parent f189629 commit 9273f51

File tree

8 files changed

+8
-16
lines changed

8 files changed

+8
-16
lines changed

tests/mocks/FPExpress.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0FPExpress" %*
1+
@echo off & python "%~dp0%~n0" %*

tests/mocks/impact.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0impact" %*
1+
@echo off & python "%~dp0%~n0" %*

tests/mocks/libero.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0libero" %*
1+
@echo off & python "%~dp0%~n0" %*

tests/mocks/pnmainc.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0diamondc" %*
1+
@echo off & python "%~dp0diamondc" %*

tests/mocks/quartus_pgm.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0quartus_pgm" %*
1+
@echo off & python "%~dp0%~n0" %*

tests/mocks/quartus_sh.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0quartus_sh" %*
1+
@echo off & python "%~dp0%~n0" %*

tests/mocks/vivado.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0vivado" %*
1+
@echo off & python "%~dp0%~n0" %*

tests/mocks/xtclsh.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
@echo off
2-
python "%~dp0xtclsh" %*
1+
@echo off & python "%~dp0%~n0" %*

0 commit comments

Comments
 (0)