Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change 'cd' to 'cp -r' (apache#2368)
### Motivation In https://pulsar.incubator.apache.org/docs/en/io-quickstart/ , `connectors` directory cannot be copied because copy command is wrong. > // you will find a directory named `apache-pulsar-io-connectors-2.1.0-incubating` in the pulsar directory > // then copy the connectors > > $ cd apache-pulsar-io-connectors-2.1.0-incubating/connectors connectors ### Modifications ・Change `cd` to `cp -r` ### Result `connectors` directory can be copied successfully. ``` $ cp -r apache-pulsar-io-connectors-2.1.0-incubating/connectors connectors $ ls connectors pulsar-io-aerospike-2.1.0-incubating.nar pulsar-io-kinesis-2.1.0-incubating.nar pulsar-io-cassandra-2.1.0-incubating.nar pulsar-io-rabbitmq-2.1.0-incubating.nar pulsar-io-kafka-2.1.0-incubating.nar pulsar-io-twitter-2.1.0-incubating.nar ```
- Loading branch information