< :前の番号
^ :番号順リスト
> :次の番号
P :前の記事(スレッド移動)
N :次の記事(スレッド移動)
|<:前のスレッド
>|:次のスレッド
^ :返事先
_:自分への返事
>:同じ返事先を持つ記事(前)
<:同じ返事先を持つ記事(後)
---:分割してスレッド表示、再表示
| :分割して(縦)スレッド表示、再表示
~ :スレッドのフレーム消去
.:インデックス
..:インデックスのインデックス
Issue #12066 has been updated by Nobuyoshi Nakada.
Status changed from Open to Closed
Assignee changed from Nobuyoshi Nakada to Tomoyuki Chikanaga
Backport changed from 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN, 2.3: UNKNOWN to 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: REQUIRED, 2.3: DONTNEED
It has been fixed by [the upstream](https://github.com/rubygems/rubygems/commit/f9232680), and imported to 2.3.
----------------------------------------
Bug #12066: Ruby creates Wrong .Bat files
https://bugs.ruby-lang.org/issues/12066#change-56970
* Author: Kevin Marti
* Status: Closed
* Priority: Normal
* Assignee: Tomoyuki Chikanaga
* ruby -v: ruby 2.2.4p230 (2015-12-16 revision 53155) [x64-mingw32]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: REQUIRED, 2.3: DONTNEED
----------------------------------------
After i downloaded the newest version of Ruby and installed SASS, i tried to run SASS from the command line.
This gave me following error:
Der Befehl **"""C:\Program"** ist entweder falsch geschrieben oder
konnte nicht gefunden werden. (In German, but important part is the bold one.)
it says command not found...
So i debugged the sass.bat file and saw that there is a " too much.
I modified the file from:
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@**"**"C:\Program Files\Ruby22-x64\bin\ruby.exe" "C:/Program Files/Ruby22-x64/bin/sass" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@**"**"C:\Program Files\Ruby22-x64\bin\ruby.exe" "%~dpn0" %*
to:
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"C:\Program Files\Ruby22-x64\bin\ruby.exe" "C:/Program Files/Ruby22-x64/bin/sass" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"C:\Program Files\Ruby22-x64\bin\ruby.exe" "%~dpn0" %*
Now it works fine. To mention is, that i installed ruby under C:\Program Files and not in the root directly.
So i think the .Bat-Creator is making something strange while writing the file.
I hope you can fix it, so other Peoble dont have to modify every additional bat file.
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request / ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>