Skip to content
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

fix: Postinstall script cannot be executed #25

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

Losses
Copy link

@Losses Losses commented Jun 12, 2024

Description

This pull request addresses the issue of Windows compatibility for the postinstall script in the shard.yml file. The original script was not supported on Windows, which caused installation issues for users on that platform.

Changes Made

  • Replaced the original postinstall script with a Crystal script to ensure compatibility across different operating systems, including Windows.

New postinstall Script

The new script is as follows:

sam_cr_path = "../../sam.cr"
template_path = "examples/sam.template"

if !File.exists?(sam_cr_path)
  File.copy(template_path, sam_cr_path)
end

Benefits

  • Ensures that the postinstall script runs smoothly on Windows.
  • Leverages Crystal's standard library for file operations, making the script more portable and easier to maintain.

Testing

  • Verified that the sam.cr file is correctly copied from the template if it does not already exist.

Related Issues

Thank you for considering this improvement. Looking forward to your feedback.

@imdrasil imdrasil self-requested a review June 24, 2024 15:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant