Skip to content

Commit

Permalink
fix(makefile): fix detecting python3 on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Aug 19, 2024
1 parent a4df4d2 commit 193b57e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ DEST_PLUGIN_DIR = $(DESTDIR)$(APPDIR)/plugins
DEST_PREFIX = $(DESTDIR)$(PREFIX)

SHELL := bash
PYTHON := $(shell which python)
PYTHON := $(shell which python3)
ifeq (,$(PYTHON))
$(error Can't find Python)
$(error Can't find `python3`)
endif

# lint:
Expand Down

0 comments on commit 193b57e

Please sign in to comment.