scratchfoundation / scratchfoundation/scratch-parser

Can't convert to zip

Open
#37 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

feature request
Dominant language
JavaScript
Stars
71
Forks
81
Avg merge
2h 46m
Merged PRs (30d)
1

Description

I used a batch file to copy the file, but it won't convert to a zip file. Please allow zip conversions for block "hacking".
Batch file code:

@echo off
title "COPY A FILE"
color 1f
echo Welcome to the file copier!
PAUSE
:top
echo What file do you want to copy?
set /p fileone=
echo What will the new file name be?
set /p filetwo=
more %fileone%>%filetwo%
echo File Copied
PAUSE
echo "Would you like to copy another file? [Y/N]"
set /p choice=
if "%choice%"=="Y" (
goto top
)
if "%choice%"=="N" (
goto end
)
:end
echo Thank you for choosing File Copier to copy your files!
PAUSE
exit

I added the code in case it is a code error for the batch file.

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

No source file, test, or parser entry point is named; start by clarifying what “zip conversion” and block “hacking” mean in scratch-parser and reproduce the report using the supplied batch file. Done should be an agreed conversion behavior with coverage for the relevant case.

Written by the indexing model from the issue text.

Assessment

Tech stack
javascript
Domain
tooling
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.