1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

初めてmakeコマンドを使ってdeployを実行したときに下記エラーがでた。


$ make deploy

Makefile:2: *** missing separator.  Stop.

原因

こちらファイル内にスペースが入っている為にdeployがstopしたようです。
二行目にスペースいました。

deploy:
	 npm run build
	firebase deploy

解決

スペースをタブに切り替えたら無事に解決!

deploy:
	npm run build
	firebase deploy

参考

ありがとうございます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?