WebStorm「You have JVM property "https.proxyHost" set to(以下略」

WebStormが
You have JVM property "https.proxyHost" set to(以下略

とかいう警告を出してきて激おこぷんぷん丸だったので
http://youtrack.jetbrains.com/issue/IDEA-101124
を参考にして対策を打った。

/Applications/WebStorm.app/Contents/Info.plist
に以下の設定を追加した

			<key>https.proxyHost</key>
			<string></string>
			<key>http.proxyHost</key>
			<string></string>
場所は
<key>JVMVersion</key>
		<string>1.6*</string>
		<key>MainClass</key>
		<string>com.intellij.idea.Main</string>
		<key>Properties</key>
		<dict>
			<key>https.proxyHost</key>
			<string></string>
			<key>http.proxyHost</key>
			<string></string>
			<key>idea.paths.selector</key>
			<string>WebStorm6</string>
			<key>idea.platform.prefix</key>
			<string>WebStorm</string>
		</dict>
の辺り。

appがどういう流れで起動するのか。とか理解出来ればもう少し早く解決できたかもしれないOTL

0 件のコメント :