2017-08-28 18 views
0

私は.bowerrcを登録しました。 .bowerrcは.bowerrcで構文エラーが発生するのはなぜですか?

{ 
    "directory": "bower_components", 
    "timeout": 120000, 
    "registry": { 
    "search": 
     "https://github.com", 
    } 
} 

ですが、私はソース.bowerrcを実行すると、エラーが発生し、トレースバックは言っ

-bash: directory:: command not found 
-bash: timeout:: command not found 
-bash: registry:: command not found 
-bash: search:: command not found 
-bash: https://github.com,: No such file or directory 
-bash: .bowerrc: line 8: syntax error near unexpected token `}' 
-bash: .bowerrc: line 8: `}' 

構文エラーがhappens.Is何らかの問題が?どのように私はこの問題を解決することができ、なぜ私は本当に理解することはできません?

答えて

0

含まれている設定を適用するために.bowerrcを取得する必要はありません。は、behind the scenesの呼び出しですべてを行います。

あなたが見ているエラーは、bashで、JSON形式のテキストファイルをシェルスクリプトとして実行しようとしています(ソースファイルの場合に起こります)。 {}group commands in the same shell contextと同様にbashは有効なコマンド/実行可能ファイル/シェル関数ではないdirectory: bower_components,以降の行を実行しようとしています。

関連する問題