Skip to content

Commit

Permalink
testing architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
cabeaulac committed Jan 30, 2024
1 parent 3784f5a commit f64a9b3
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 @@ -2,8 +2,8 @@ SHELL := /bin/bash

PROJECT_MODULE_NAME = ./src/lambda-hello-name/src/

uname_m1=$(uname -m)
uname_m=$(uname -m | sed 's/amd64/x86_64/')
uname_m1=$(shell uname -m)
uname_m=$(shell uname -m | sed 's/amd64/x86_64/')
ifeq ($(uname_m), x86_64)
export ARCHITECTURE := amd64
else
Expand Down

0 comments on commit f64a9b3

Please sign in to comment.