Skip to content

Commit

Permalink
fix: broken export command (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
npaton committed Feb 8, 2024
1 parent ddd1f98 commit e70565d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/export-command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@empirica/core": patch
---

Fix broken export command.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export async function startTajriba(

let empiricaCmd = "empirica";

if (process.env.EMPIRICA_DEV !== "") {
if (process.env.EMPIRICA_DEV) {
empiricaCmd = "emp";
}

Expand Down

0 comments on commit e70565d

Please sign in to comment.