-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
githash.bat のエラー耐性を上げる #360
githash.bat のエラー耐性を上げる #360
Conversation
- 引数に / が含まれていても動くようにする - カレントディレクトリが意図していない場所になっていても動作するようにする
sakura/githash.bat
Outdated
|
||
@echo. | ||
@echo ---- Make githash.h ---- | ||
|
||
@rem ensure to be in the proper directory | ||
pushd %~dp0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
%~dp0
をダブルクォートで囲うべきだと思います。
ないとは思いますが C:\Documents and Settings\berryzplus\My Documents\sakura
にクローンした場合、
pushd C:\Documents
と解釈されてエラーになる余地があります。
修正しました |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正しました。
確認しました。
…thash-bat githash.bat のエラー耐性を上げる
githash.bat のエラー耐性を上げる