Skip to content

Commit

Permalink
Make build scripts portable (#639)
Browse files Browse the repository at this point in the history
Co-authored-by: Jesse Hills <[email protected]>
  • Loading branch information
mweinelt and jesserockz authored Aug 4, 2024
1 parent 09ffc65 commit 809c74d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script/build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Stop on errors
set -e
Expand Down
2 changes: 1 addition & 1 deletion script/develop
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Stop on errors
set -e
Expand Down
2 changes: 1 addition & 1 deletion script/sync-vscode
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Copies all files which are shared between vscode and dashboard editor

Expand Down
2 changes: 1 addition & 1 deletion web.esphome.io/script/build_web
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Stop on errors
set -e
Expand Down
2 changes: 1 addition & 1 deletion web.esphome.io/script/develop_web
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ -z "$PORT" ]; then
PORT=5006
Expand Down

0 comments on commit 809c74d

Please sign in to comment.