-
Notifications
You must be signed in to change notification settings - Fork 27
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
Wait loop added to address Issue #84 #85
Conversation
…directory. This will avoid server to point the top directory and make it to point inside the output directory
Have you tested this out? Since If this is tested, I'll merge it in. |
The issue is because we are running pelican command with --auto-reload option in the background.
when the shell script excutes each line, the above code excuted and run in the background , i.e script wont wait till it creates output directory, it start executing next lines. when the cd command execute there wont be any output directory. So we are running the pelcian.server in the basedirectory not in the output directory. Is my explanation is clear ? or confusing |
Very clear sir 👍 My point is that the file: This seems like a genuine enough issue to me to be reported to Pelican itself. |
Wait loop added to address Issue #84
@shrayasr actually we cant file an issue. |
ouptut of pelican-quickstart
|
Right but it also seems like their own |
@shrayasr ok then we can file an issue. Will do that |
👍 |
Raised an issue with pelican. |
On Wed, Jul 15, 2015 at 12:26 PM, Rengaraj [email protected] wrote:
Awesomeness! :) |
I have added a wait loop in startup function of deveserver shell script to avoid server pointing to topdirectory.
This fix can now able to point the output directory.
I request Maintainers to review it.