Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Tech: corrige la détection de build Parcel pour le livereload
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnix committed Apr 29, 2022
1 parent 840154b commit 7973abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def run(self):
for line_bytes in proc.stdout:
line = line_bytes.decode("utf-8")
print(line)
if line.startswith("✨ Built in"):
if line.startswith("✨ Built in"):
self.trigger_livereload()

def trigger_livereload(self):
Expand Down

0 comments on commit 7973abe

Please sign in to comment.