Skip to content

Commit

Permalink
use python for arch as some platforms don't have the i386 command
Browse files Browse the repository at this point in the history
  • Loading branch information
hackalog committed Oct 17, 2020
1 parent af7f48a commit c9daab8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions {{ cookiecutter.repo_name }}/Makefile.include
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARCH := $(shell arch)
CONDA_EXE ?= {{ cookiecutter.conda_path }}
DEBUG_FILE := debug.txt
MODULE_NAME := {{ cookiecutter.module_name }}
TESTS_NO_CI = $(MODULE_NAME)/tests/no_ci
PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
PROJECT_NAME := {{ cookiecutter.repo_name }}
PYTHON_INTERPRETER := python3
VIRTUALENV := {{ cookiecutter.virtualenv }}
ARCH := $(shell $(PYTHON_INTERPRETER) -c "import platform; print(platform.platform())")
VIRTUALENV := conda

0 comments on commit c9daab8

Please sign in to comment.